See all tags.
Tagged “react series”
Part 4 - ReactJS clone reconciliation - Detecting changed tags
Now it's time to step it up a little bit and add some intelligence to the rendering algoritm. Instead of blindly re-creating the DOM each time, it will become smarter and apply only the changes that are different
Part 3 - ReactJS clone reconciliation
Now it's time to step it up a little bit and add some intelligence to the rendering algoritm. Instead of blindly re-creating the DOM each time, it will become smarter and apply only the changes that are different
Part 2 - ReactJS clone - Creating DOM elements
It's time to start implementing the React render method
Part 1 - React and the virtual DOM
You'll be hearing a lot about DOM and Virtual DOM when talking about React. In this first part we figure out what these are and establish the first API and data structures we'll be coding against.